home *** CD-ROM | disk | FTP | other *** search
/ CICA 1995 August / CICA - The Ultimate Collection of Shareware for Windows (Disc 2) (August 1995).iso / disc2 / nt / source.exe / POSIX / BSDPSX / BCOPY.C next >
Encoding:
C/C++ Source or Header  |  1992-06-20  |  153 b   |  10 lines

  1. #include <string.h>
  2. /*
  3.  * Bcopy:  Posix implementation MSS
  4.  */
  5.  
  6. void bcopy(const void *src, void *dst, size_t len)
  7. {
  8.   memcpy(dst, src, len);
  9. }
  10.